PreviousNextTracker indexSee it online !

(51/308) 400 - Session plugin will incorrectly store non-ascii chars on win

If file name contains non ascii chars, session plugin
could store it incorrectly. Also it will read garbage,
so I need to reopen files by hand.

I've two suspicions:
1. In file ParseUtilities.java:211 very strange
condition c<=0x9f. Mabe the is typo in source and
should be 0xf9. Also I have no idea what mean this
magic number.

2. In file Session.java:458 filename value is not
decoded by ParseUtilities method. It should be so?

Submitted abondarenko - 2004-11-04 12:08:12 Assigned sjakob
Priority 5 Labels
Status open Group None
Resolution None

Comments

2005-02-23 19:48:19
spestov

- **milestone**: 101608 -->

2007-05-01 21:25:53
sjakob

- **assigned_to**: nobody --> sjakob

2008-05-03 14:49:06
rschwenn

Logged In: YES
user_id=1486645
Originator: NO

In the session xml file special filename characters are stored with escaped unicode notation as in properties files, i.e. "\u00C4" for an "Ä". But when the session is restored, the preceding backslash of this notation is treated as a path separator...

It's a bit annoying.